home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / gengetopt-2.6.lha / gengetopt-2.6 / src / yyerror.c < prev    next >
C/C++ Source or Header  |  2002-03-02  |  317b  |  20 lines

  1. /*
  2. This file is licensed to you under the license specified in the included file
  3. `LICENSE'. Look there for further details.
  4. */
  5.  
  6.  
  7. /*
  8.   Called by yyparse on error.
  9.  */
  10. #include <stdio.h>
  11.  
  12. extern int gengetopt_count_line; 
  13.  
  14. void
  15. yyerror (char *s)
  16. {
  17.   fprintf (stderr, "gengetopt: %d: %s\n", gengetopt_count_line, s);
  18. }
  19.  
  20.